home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / toollist.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-16  |  2.0 KB  |  67 lines

  1. /******************************************************************/
  2. /*                                                                */
  3. /*                      TurboCAD for Windows                      */
  4. /*                   Copyright (c) 1993 - 2001                    */
  5. /*             International Microcomputer Software, Inc.         */
  6. /*                            (IMSI)                              */
  7. /*                      All rights reserved.                      */
  8. /*                                                                */
  9. /******************************************************************/
  10.  
  11. #if !defined(AFX_TOOLLIST_H__38D78325_64F1_11D2_82CE_006052012837__INCLUDED_)
  12. #define AFX_TOOLLIST_H__38D78325_64F1_11D2_82CE_006052012837__INCLUDED_
  13.  
  14. #if _MSC_VER >= 1000
  15. #pragma once
  16. #endif // _MSC_VER >= 1000
  17. // ToolList.h : header file
  18. //
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CToolList window
  22.  
  23. class CExternalObjectsList : public CListBox
  24. {
  25. // Construction
  26. public:
  27.     CExternalObjectsList();
  28.  
  29. // Attributes
  30. public:
  31.     HCURSOR m_OldCursor;
  32.     HCURSOR m_DragCursor;
  33.  
  34. // Operations
  35. public:
  36.  
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(CExternalObjectsList)
  40.     //}}AFX_VIRTUAL
  41.  
  42. // Implementation
  43. public:
  44.     CString m_cstrCurSelected;
  45.     CPoint m_LB_DOWNpoint;
  46.     BOOL m_bDrag;
  47.     virtual ~CExternalObjectsList();
  48.  
  49.     // Generated message map functions
  50. protected:
  51.     //{{AFX_MSG(CExternalObjectsList)
  52.     afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  53.     afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  54.     afx_msg void OnSelchange();
  55.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  56.     //}}AFX_MSG
  57.  
  58.     DECLARE_MESSAGE_MAP()
  59. };
  60.  
  61. /////////////////////////////////////////////////////////////////////////////
  62.  
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  65.  
  66. #endif // !defined(AFX_TOOLLIST_H__38D78325_64F1_11D2_82CE_006052012837__INCLUDED_)
  67.